Skip to content

Instantly share code, notes, and snippets.

@marketinview
Last active October 23, 2022 16:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marketinview/d5cc5034c78e71f31c2d to your computer and use it in GitHub Desktop.
Save marketinview/d5cc5034c78e71f31c2d to your computer and use it in GitHub Desktop.
Qualtrics: Add Symbol or Text Before and/or after Open End Text entry. #qualtrics #js #jq #text
Qualtrics.SurveyEngine.addOnload(function() {
var input = jQuery("#"+this.questionId+" .InputText");
input.before("$ ");
input.after(" /mo");
input.select().focus(); //optional, focus on input field
});
@marketinview
Copy link
Author

marketinview commented Nov 14, 2017

See additional Qualtrics solutions at: https://qualtricswiki.tgibbons.com/doku.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment